home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / utils / file / managers / mc-3.2 / mc-3 / mc-3.2.1 / nt / mc.rc < prev    next >
Encoding:
Text File  |  1996-05-17  |  2.1 KB  |  60 lines

  1. /* MC.RC - Icon and version info resource file
  2.  
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.  
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  16. #include <windows.h>
  17. #include <winver.h>
  18. #include "config.h"
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. // Version stamp for this .EXE
  22. VS_VERSION_INFO     VERSIONINFO
  23.   FILEVERSION       1,0,0,1
  24.   PRODUCTVERSION    3,0,0,1
  25.   FILEFLAGSMASK     VS_FFI_FILEFLAGSMASK
  26. #ifdef _DEBUG
  27.   FILEFLAGS         VS_FF_DEBUG|VS_FF_PRIVATEBUILD|VS_FF_PRERELEASE
  28. #else
  29.   FILEFLAGS         0 // final version
  30. #endif
  31.   FILEOS            VOS_NT
  32.   FILETYPE          VFT_APP
  33.   FILESUBTYPE       0   // not used
  34. BEGIN
  35.     BLOCK "StringFileInfo"
  36.     BEGIN               
  37.         BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilingual
  38.         BEGIN 
  39.             VALUE "CompanyName",     "The Freeware Fundation\0"
  40.             VALUE "FileDescription", "GNU Midnight Commander\0"
  41.             VALUE "FileVersion",     VERSION
  42.             VALUE "InternalName",    "MC\0"
  43.             VALUE "LegalCopyright",  "(c) The Freeware Fundation\0"
  44.             VALUE "LegalTrademarks", "see GNU General Public License\0"
  45.             VALUE "OriginalFilename","MC.EXE\0"
  46.             VALUE "ProductName",     "GNU Midnight Commander\0"
  47.             VALUE "ProductVersion",  VERSION
  48.         END
  49.     END
  50.     BLOCK "VarFileInfo" 
  51.     BEGIN 
  52.         VALUE "Translation", 0x409, 1252
  53.             // English language (0x409) and the Windows ANSI codepage (1252)
  54.     END
  55. END
  56.  
  57. /////////////////////////////////////////////////////////////////////////////
  58. // ICON
  59. 0 ICON "mc.ico"
  60.